home *** CD-ROM | disk | FTP | other *** search
- #define VAR 257
- #define BLTINVAR 258
- #define CONST 259
- #define BLTINCONST 260
- #define STRVAR 261
- #define BLTINSTRVAR 262
- #define STRCONST 263
- #define BLTINSTRCONST 264
- #define STRING 265
- #define UNDEFVEC 266
- #define UNDEFVAR 267
- #define UNDEFSTRVAR 268
- #define VEC 269
- #define AUTOVEC 270
- #define PARAM 271
- #define PRINT 272
- #define WHILE 273
- #define IF 274
- #define ELSE 275
- #define CONTINUE 276
- #define BREAK 277
- #define FOR 278
- #define RETURN 279
- #define FUNC 280
- #define PROC 281
- #define FUNCSYM 282
- #define PROCSYM 283
- #define EFUNCSYM 284
- #define EPROCSYM 285
- #define AUTO 286
- #define ARG 287
- #define AUTOSTRVAR 288
- #define BLTIN0 289
- #define BLTIN1 290
- #define BLTIN2 291
- #define STRBLTIN2 292
- #define BLTIN1VEC 293
- #define BLTIN0STR 294
- #define BLTIN1STR 295
- #define BLTIN2STR 296
- #define VARARG 297
- #define STRVARARG 298
- #define VECARG 299
- #define PARARG 300
- #define NUMBER 301
- #define DIVASS 302
- #define MULASS 303
- #define ADDASS 304
- #define SUBASS 305
- #define OR 306
- #define AND 307
- #define GT 308
- #define GE 309
- #define LT 310
- #define LE 311
- #define EQ 312
- #define NE 313
- #define UNARYMINUS 314
- #define NOT 315
- #define INCR 316
- #define DECR 317
- typedef union {
- Symbol *sym;
- Inst *inst;
- int narg;
- double val;
- } YYSTYPE;
- extern YYSTYPE Ft_mathyylval;
-